From e55b5b5a6fce030ec024e64a4f37ae3e84245f21 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Sun, 10 Dec 2006 02:39:30 +0000 Subject: [PATCH] Fix for oldtitle too --- includes/DifferenceEngine.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/DifferenceEngine.php b/includes/DifferenceEngine.php index c423ebcb83..77fef48f9a 100644 --- a/includes/DifferenceEngine.php +++ b/includes/DifferenceEngine.php @@ -564,8 +564,8 @@ CONTROL; $t = $wgLang->timeanddate( $this->mOldRev->getTimestamp(), true ); $oldLink = $this->mOldPage->escapeLocalUrl( 'oldid=' . $this->mOldid ); $oldEdit = $this->mOldPage->escapeLocalUrl( 'action=edit&oldid=' . $this->mOldid ); - $this->mOldtitle = "" . htmlspecialchars( wfMsg( 'revisionasof', $t ) ) - . " (" . htmlspecialchars( wfMsg( 'editold' ) ) . ")"; + $this->mOldtitle = "" . htmlspecialchars( wfMsg( 'revisionasof', $t ) ) + . " (" . htmlspecialchars( wfMsg( 'editold' ) ) . ")"; } return true; -- 2.20.1